| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- import React from 'react';
- import { IUserHasId, IPagePopulatedToShowRevision } from '@growi/core';
- import {
- GetServerSideProps, GetServerSidePropsContext,
- } from 'next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import dynamic from 'next/dynamic';
- import Head from 'next/head';
- import superjson from 'superjson';
- import { useCurrentGrowiLayoutFluidClassName } from '~/client/services/layout';
- import { MainPane } from '~/components/Layout/MainPane';
- import { ShareLinkLayout } from '~/components/Layout/ShareLinkLayout';
- import GrowiContextualSubNavigation from '~/components/Navbar/GrowiContextualSubNavigation';
- import { Page } from '~/components/Page';
- import type { PageSideContentsProps } from '~/components/PageSideContents';
- import { DrawioViewerScript } from '~/components/Script/DrawioViewerScript';
- import { SupportedAction, SupportedActionType } from '~/interfaces/activity';
- import { CrowiRequest } from '~/interfaces/crowi-request';
- import { RendererConfig } from '~/interfaces/services/renderer';
- import { IShareLinkHasId } from '~/interfaces/share-link';
- import type { PageDocument } from '~/server/models/page';
- import {
- useCurrentUser, useCurrentPathname, useCurrentPageId, useRendererConfig, useIsSearchPage,
- useShareLinkId, useIsSearchServiceConfigured, useIsSearchServiceReachable, useIsSearchScopeChildrenAsDefault, useDrawioUri, useIsContainerFluid,
- } from '~/stores/context';
- import loggerFactory from '~/utils/logger';
- import { NextPageWithLayout } from '../_app.page';
- import {
- CommonProps, getServerSideCommonProps, generateCustomTitle, getNextI18NextConfig,
- } from '../utils/commons';
- const logger = loggerFactory('growi:next-page:share');
- const PageSideContents = dynamic<PageSideContentsProps>(() => import('~/components/PageSideContents').then(mod => mod.PageSideContents), { ssr: false });
- // const Comments = dynamic(() => import('~/components/Comments').then(mod => mod.Comments), { ssr: false });
- const ShareLinkAlert = dynamic(() => import('~/components/Page/ShareLinkAlert'), { ssr: false });
- const ForbiddenPage = dynamic(() => import('~/components/ForbiddenPage'), { ssr: false });
- type Props = CommonProps & {
- shareLinkRelatedPage?: IShareLinkRelatedPage,
- shareLink?: IShareLinkHasId,
- isExpired: boolean,
- disableLinkSharing: boolean,
- isSearchServiceConfigured: boolean,
- isSearchServiceReachable: boolean,
- isSearchScopeChildrenAsDefault: boolean,
- drawioUri: string | null,
- rendererConfig: RendererConfig,
- };
- type IShareLinkRelatedPage = IPagePopulatedToShowRevision & PageDocument;
- superjson.registerCustom<IShareLinkRelatedPage, string>(
- {
- isApplicable: (v): v is IShareLinkRelatedPage => {
- return v != null
- && v.toObject != null
- && v.lastUpdateUser != null
- && v.creator != null
- && v.revision != null;
- },
- serialize: (v) => { return superjson.stringify(v.toObject()) },
- deserialize: (v) => { return superjson.parse(v) },
- },
- 'IShareLinkRelatedPageTransformer',
- );
- const SharedPage: NextPageWithLayout<Props> = (props: Props) => {
- useIsSearchPage(false);
- useShareLinkId(props.shareLink?._id);
- useCurrentPageId(props.shareLink?.relatedPage._id);
- useCurrentUser(props.currentUser);
- useCurrentPathname(props.currentPathname);
- useRendererConfig(props.rendererConfig);
- useIsSearchServiceConfigured(props.isSearchServiceConfigured);
- useIsSearchServiceReachable(props.isSearchServiceReachable);
- useIsSearchScopeChildrenAsDefault(props.isSearchScopeChildrenAsDefault);
- useDrawioUri(props.drawioUri);
- useIsContainerFluid(props.isContainerFluid);
- const growiLayoutFluidClass = useCurrentGrowiLayoutFluidClassName();
- const isNotFound = props.shareLink == null || props.shareLink.relatedPage == null || props.shareLink.relatedPage.isEmpty;
- const isShowSharedPage = !props.disableLinkSharing && !isNotFound && !props.isExpired;
- const shareLink = props.shareLink;
- const title = generateCustomTitle(props, 'GROWI');
- const sideContents = shareLink != null
- ? <PageSideContents page={shareLink.relatedPage} />
- : <></>;
- // const footerContents = shareLink != null && isPopulated(shareLink.relatedPage.revision)
- // ? (
- // <>
- // <Comments pageId={shareLink._id} pagePath={shareLink.relatedPage.path} revision={shareLink.relatedPage.revision} />
- // </>
- // )
- // : <></>;
- return (
- <>
- <Head>
- <title>{title}</title>
- </Head>
- <div className={`dynamic-layout-root ${growiLayoutFluidClass} h-100 d-flex flex-column justify-content-between`}>
- <header className="py-0 position-relative">
- {isShowSharedPage && <GrowiContextualSubNavigation currentPage={props.shareLinkRelatedPage} isLinkSharingDisabled={props.disableLinkSharing} />}
- </header>
- <div id="grw-fav-sticky-trigger" className="sticky-top"></div>
- <MainPane
- sideContents={sideContents}
- // footerContents={footerContents}
- >
- { props.disableLinkSharing && (
- <div className="mt-4">
- <ForbiddenPage isLinkSharingDisabled={props.disableLinkSharing} />
- </div>
- )}
- { (isNotFound && !props.disableLinkSharing) && (
- <div className="container-lg">
- <h2 className="text-muted mt-4">
- <i className="icon-ban" aria-hidden="true" />
- <span> Page is not found</span>
- </h2>
- </div>
- )}
- { (props.isExpired && !props.disableLinkSharing && shareLink != null) && (
- <div className="container-lg">
- <ShareLinkAlert expiredAt={shareLink.expiredAt} createdAt={shareLink.createdAt} />
- <h2 className="text-muted mt-4">
- <i className="icon-ban" aria-hidden="true" />
- <span> Page is expired</span>
- </h2>
- </div>
- )}
- {(isShowSharedPage && shareLink != null) && (
- <>
- <ShareLinkAlert expiredAt={shareLink.expiredAt} createdAt={shareLink.createdAt} />
- <Page currentPage={props.shareLinkRelatedPage} />
- </>
- )}
- </MainPane>
- </div>
- </>
- );
- };
- SharedPage.getLayout = function getLayout(page) {
- return (
- <>
- <DrawioViewerScript />
- <ShareLinkLayout>{page}</ShareLinkLayout>
- </>
- );
- };
- function injectServerConfigurations(context: GetServerSidePropsContext, props: Props): void {
- const req: CrowiRequest = context.req as CrowiRequest;
- const { crowi } = req;
- const { configManager, searchService, xssService } = crowi;
- props.disableLinkSharing = configManager.getConfig('crowi', 'security:disableLinkSharing');
- props.isSearchServiceConfigured = searchService.isConfigured;
- props.isSearchServiceReachable = searchService.isReachable;
- props.isSearchScopeChildrenAsDefault = configManager.getConfig('crowi', 'customize:isSearchScopeChildrenAsDefault');
- props.drawioUri = configManager.getConfig('crowi', 'app:drawioUri');
- props.rendererConfig = {
- isEnabledLinebreaks: configManager.getConfig('markdown', 'markdown:isEnabledLinebreaks'),
- isEnabledLinebreaksInComments: configManager.getConfig('markdown', 'markdown:isEnabledLinebreaksInComments'),
- adminPreferredIndentSize: configManager.getConfig('markdown', 'markdown:adminPreferredIndentSize'),
- isIndentSizeForced: configManager.getConfig('markdown', 'markdown:isIndentSizeForced'),
- plantumlUri: process.env.PLANTUML_URI ?? null,
- blockdiagUri: process.env.BLOCKDIAG_URI ?? null,
- // XSS Options
- isEnabledXssPrevention: configManager.getConfig('markdown', 'markdown:rehypeSanitize:isEnabledPrevention'),
- attrWhiteList: xssService.getAttrWhiteList(),
- tagWhiteList: xssService.getTagWhiteList(),
- highlightJsStyleBorder: configManager.getConfig('crowi', 'customize:highlightJsStyleBorder'),
- };
- }
- async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props: Props, namespacesRequired?: string[] | undefined): Promise<void> {
- const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired);
- props._nextI18Next = nextI18NextConfig._nextI18Next;
- }
- function getAction(props: Props): SupportedActionType {
- let action: SupportedActionType;
- if (props.isExpired) {
- action = SupportedAction.ACTION_SHARE_LINK_EXPIRED_PAGE_VIEW;
- }
- else if (props.shareLink == null) {
- action = SupportedAction.ACTION_SHARE_LINK_NOT_FOUND;
- }
- else {
- action = SupportedAction.ACTION_SHARE_LINK_PAGE_VIEW;
- }
- return action;
- }
- async function addActivity(context: GetServerSidePropsContext, action: SupportedActionType): Promise<void> {
- const req: CrowiRequest = context.req as CrowiRequest;
- const parameters = {
- ip: req.ip,
- endpoint: req.originalUrl,
- action,
- user: req.user?._id,
- snapshot: {
- username: req.user?.username,
- },
- };
- await req.crowi.activityService.createActivity(parameters);
- }
- export const getServerSideProps: GetServerSideProps = async(context: GetServerSidePropsContext) => {
- const req = context.req as CrowiRequest<IUserHasId & any>;
- const { crowi, params } = req;
- const result = await getServerSideCommonProps(context);
- if (!('props' in result)) {
- throw new Error('invalid getSSP result');
- }
- const props: Props = result.props as Props;
- try {
- const ShareLinkModel = crowi.model('ShareLink');
- const shareLink = await ShareLinkModel.findOne({ _id: params.linkId }).populate('relatedPage');
- if (shareLink != null) {
- props.shareLinkRelatedPage = await shareLink.relatedPage.populateDataToShowRevision();
- props.isExpired = shareLink.isExpired();
- props.shareLink = shareLink.toObject();
- }
- }
- catch (err) {
- logger.error(err);
- }
- injectServerConfigurations(context, props);
- await injectNextI18NextConfigurations(context, props);
- await addActivity(context, getAction(props));
- return {
- props,
- };
- };
- export default SharedPage;
|